home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-058.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12366);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CVE-2002-1509");
  13.  
  14.  name["english"] = "RHSA-2003-058: shadow";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated shadow-utils packages are now available. These updated packages
  21.   correct a bug that caused the useradd tool to create mail spools with
  22.   incorrect permissions.
  23.  
  24.   The shadow-utils package includes programs for converting UNIX password
  25.   files to the shadow password format, plus programs for managing user and
  26.   group accounts. One of these programs is useradd, which is used to create
  27.   or update new user information.
  28.  
  29.   When creating a user account, the version of useradd included in Red Hat
  30.   packages creates a mail spool file with incorrectly-set group ownership.
  31.   Instead of setting the file\'s group ownership to the "mail" group, it is
  32.   set to the user\'s primary group.
  33.  
  34.   On systems where other users share the same primary group, this would allow
  35.   those users to be able to read and write other user mailboxes.
  36.  
  37.   These errata packages contain an updated patch to useradd. Where a mail
  38.   group exists, mailboxes will be created with group mail having read and
  39.   write permissions. Otherwise the mailbox will be created without group
  40.   read and write permissions.
  41.  
  42.   All users are advised to upgrade to these updated packages and also to
  43.   check the /var/spool/mail directory to ensure that mailboxes have correct
  44.   permissions.
  45.  
  46.  
  47.  
  48.  
  49. Solution : http://rhn.redhat.com/errata/RHSA-2003-058.html
  50. Risk factor : High';
  51.  
  52.  script_description(english:desc["english"]);
  53.  
  54.  summary["english"] = "Check for the version of the shadow packages";
  55.  script_summary(english:summary["english"]);
  56.  
  57.  script_category(ACT_GATHER_INFO);
  58.  
  59.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  60.  family["english"] = "Red Hat Local Security Checks";
  61.  script_family(english:family["english"]);
  62.  
  63.  script_dependencies("ssh_get_info.nasl");
  64.  
  65.  script_require_keys("Host/RedHat/rpm-list");
  66.  exit(0);
  67. }
  68.  
  69. include("rpm.inc");
  70. if ( rpm_check( reference:"shadow-utils-20000902-9.7", release:"RHEL2.1") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75.  
  76. if ( rpm_exists(rpm:"shadow-", release:"RHEL2.1") )
  77. {
  78.  set_kb_item(name:"CVE-2002-1509", value:TRUE);
  79. }
  80.  
  81. set_kb_item(name:"RHSA-2003-058", value:TRUE);
  82.